home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
FileSetAttrib.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
359b
|
9 lines
;mark all .au3 files in current directory as read-only and system
If Not FileSetAttrib("*.au3", "+RS") Then
MsgBox(4096,"Error", "Problem setting attributes.")
EndIf
;make all .bmp files in C:\ and sub-directories writable and archived
If Not FileSetAttrib("C:\*.bmp", "-R+A", 1) Then
MsgBox(4096,"Error", "Problem setting attributes.")
EndIf